home *** CD-ROM | disk | FTP | other *** search
- Path: news.exodus.net!news
- From: Austin Ju <jun@pixera.com>
- Newsgroups: comp.lang.c
- Subject: variable-lenght argument list
- Date: 15 Mar 1996 20:47:20 GMT
- Organization: exodus communications, inc.
- Message-ID: <4icl0o$b3j@saturn.exodus.net>
- NNTP-Posting-Host: jun.pixera.com
-
- Hi!
- Is there any way we may call a function with varable-length
- argument list within another function also with varable-
- length argument list, so that the argument list inside is
- just the same as the outside's:
-
- e.g.
- void func1(int a, ...);
-
- void func2(int b, ...) {
-
- .............
- func1(b, ...); // the same argument list as from func2
- }
-
- Austin Ju
- jun@pixera.com
-